Michael Cooper adds FlySight support.
authorrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Sun, 31 Oct 2010 19:03:29 +0000 (19:03 +0000)
committerrobertl <robertl@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Sun, 31 Oct 2010 19:03:29 +0000 (19:03 +0000)
gpsbabel/style/flysight.style [new file with mode: 0644]
gpsbabel/xmldoc/formats/flysight.xml [new file with mode: 0644]

diff --git a/gpsbabel/style/flysight.style b/gpsbabel/style/flysight.style
new file mode 100644 (file)
index 0000000..9d49cbe
--- /dev/null
@@ -0,0 +1,28 @@
+# Format:      FlySight
+# Author:      LukeH
+# Date:                10/10/10
+
+DESCRIPTION            FlySight GPS File
+EXTENSION              csv
+
+# FILE LAYOUT DEFINITIIONS:
+FIELD_DELIMITER COMMA
+RECORD_DELIMITER NEWLINE
+BADCHARS ,"
+
+PROLOGUE time lat lon hMSL velN velE velD hAcc vAcc sAcc gpsFix numSV
+PROLOGUE
+
+# INDIVIDUAL DATA FIELDS, IN ORDER OF APPEARANCE:
+IFIELD ISO_TIME,       "",     "%s"    # Date & time
+IFIELD LAT_DECIMAL,    "",     "%f"    # Latitude
+IFIELD LON_DECIMAL,    "",     "%f"    # Longitude
+IFIELD ALT_METERS,     "",     "%.0f"  # Altitude above MSL (m)
+IFIELD IGNORE,         "",     "%s"    # Velocity north (m/s)
+IFIELD IGNORE,         "",     "%s"    # Velocity east (m/s)
+IFIELD IGNORE,         "",     "%s"    # Velocity down (m/s)
+IFIELD IGNORE,         "",     "%s"    # Horizontal accuracy (m)
+IFIELD IGNORE,         "",     "%s"    # Vertical accuracy (m)
+IFIELD IGNORE,         "",     "%s"    # Speed accuracy (m/s)
+IFIELD GPS_FIX,                "",     "%s"    # GPS fix type
+IFIELD GPS_SAT,                "",     "%d"    # Number of satellites used in fix
\ No newline at end of file
diff --git a/gpsbabel/xmldoc/formats/flysight.xml b/gpsbabel/xmldoc/formats/flysight.xml
new file mode 100644 (file)
index 0000000..2e595ca
--- /dev/null
@@ -0,0 +1,6 @@
+<para>
+This is the format used by the <ulink url="http://www.flysight.ca">FlySight GPS</ulink> for wingsuit pilots.
+</para>
+<para>
+Interfacing with the FlySight is pretty simple. FlySight acts like a USB disk when connected to a computer. Files are organized into folders by date, and individual files within the folder are named according to the time the log started (UTC). The files themselves are CSV text supported by this format.
+</para>